home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / DebuggerSupport.p < prev    next >
Text File  |  1996-05-01  |  14KB  |  297 lines

  1. {
  2.      File:        DebuggerSupport.p
  3.  
  4.      Contains:    Public interface to kernel services for debuggers
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT DebuggerSupport;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __DEBUGGERSUPPORT__}
  28. {$SETC __DEBUGGERSUPPORT__ := 1}
  29.  
  30. {$I+}
  31. {$SETC DebuggerSupportIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __KERNEL__}
  38. {$I Kernel.p}
  39. {$ENDC}
  40. {$IFC UNDEFINED __MACHINEEXCEPTIONS__}
  41. {$I MachineExceptions.p}
  42. {$ENDC}
  43.  
  44. {$PUSH}
  45. {$ALIGN POWER}
  46. {$LibExport+}
  47.  
  48. {$IFC FOR_SYSTEM8_PREEMPTIVE }
  49. {
  50.  In addition to the normal kernel API, the kernel provides a set of services
  51.  which are specific to debuggers.  These services are all accessed through the
  52.  DebuggerSupport library.
  53.  This first service is debugger registration and unregistration.  For a debugger
  54.  to register itself with the kernel, it calls DSRegisterDebugger.  (The kernel
  55.  allows only one registered debugger; multiple debuggers can be supported
  56.  externally by registering a dispatching entity as the debugger.)  When a debugger
  57.  has successfully registered itself, it is able to receive exceptions from
  58.  debuggable tasks.  Unregistering is simply the reverse of registering.  The
  59.  kernel automatically unregisters a debugger when it terminates if the debugger
  60.  has not already unregistered itself.  DSRegisterDebugger should be the first
  61.  call made to this library.
  62.  To receive an exception, the debugger calls DSWaitForException, passing it a
  63.  pointer to a DSExceptionRecord and a time limit.  This call blocks until either
  64.  an exception arrives or the time limit expires (pass kDurationForever to wait
  65.  indefinitely).  Note that this semantic essentially requires the debugger to
  66.  be multithreaded.
  67.  A DSExceptionRecord contains the ID of the excepted task, along with the IDs
  68.  of the task's team and address space, and a message ID corresponding to the
  69.  particular exception.  The details of the exception are contained in the
  70.  exception record's ExceptionInformation structure, which includes pointers
  71.  to the task's registers and other exception state.  The debugger may directly
  72.  modify this exception data, and, within limits, these changes will be forced
  73.  into the task's state upon resuming execution.  (Changes to certain parts of
  74.  the exception data, such as the privileged and interrupt enable bits of the
  75.  exception MSR, will be ignored.)
  76.  DSResumeFromException is used to resume the excepted task's execution or to
  77.  propagate the exception on.  It takes as parameters the exception ID and an
  78.  exception return status.  The status may be either noErr or any nonzero error
  79.  code.  noErr signifies that the debugger has cured the exception and the excepted
  80.  task should continue execution, using the state from the exception data.  Any
  81.  other status value will cause the exception to be propagated to the installed
  82.  exception handler, if any.  If there is no installed handler, or if that handler
  83.  fails to cure the exception, the exception is again presented to the debugger in
  84.  another message.  This time, returning a nonzero return status will cause the
  85.  task to be terminated.  (Double notification of exceptions allows a debugger to
  86.  catch exceptions either first, last, or at both times.)
  87.  Not all exceptions will be sent to the debugger.  Exceptions in kernel tasks
  88.  or in kernel code which runs on behalf of user tasks is not debuggable through
  89.  normal means.  Furthermore, exceptions occurring in privileged tasks with
  90.  hardware interrupts disabled, or during execution at secondary interrupt level,
  91.  or while running message system Accept functions, fall into the same category
  92.  as kernel exceptions and are not sent to the debugger.
  93.  The debugger may call DSHoldTasks to request the kernel to hold a task or set
  94.  of tasks, making them ineligible for execution.  The tasks are specified with a
  95.  task ID and scope (task only, task and children, task family, or task team).  If
  96.  any task to be held is already blocked inside the kernel, e.g. due to a page
  97.  fault, I/O operation, or message send, holding it will cause it to remain
  98.  ineligible even after it has unblocked.  Releasing held tasks with DSReleaseTasks
  99.  allows them to become eligible again.
  100.  DSGetTaskState is used to determine a task's scheduler state (runnable or blocked),
  101.  and, if blocked, what its PC and SP values were at the point it blocked.  If a
  102.  task is running a software interrupt it will have scheduler state for both its
  103.  normal execution and the execution of the software interrupt.
  104.  DSReadMemory and DSWriteMemory are used to access task memory.  To read memory,
  105.  the debugger simply calls DSReadMemory.  To modify memory, the debugger must first
  106.  call DSCreateMemoryAccess to obtain a memory write access right to the desired page
  107.  of memory.  Using that access right, it may then call DSWriteMemory to perform the
  108.  modification.  DSWriteMemory performs appropriate processor cache synchronization and
  109.  backing storage coordination to support modifying code memory, e.g. for instruction
  110.  breakpoints.  DSDeleteMemoryAccess is used to release an access right.
  111.  Some implementations of the kernel and hardware may support data breakpoints.  To
  112.  find out what data breakpoint support (if any) is available, the debugger calls
  113.  DSGetDataBreakpointInformation.  DSSetDataBreakpoint is used to set or clear a
  114.  data breakpoint.  The implementation may cause excess exceptions which will have to
  115.  be filtered out by the debugger:  breakpoints may occur in the wrong address space
  116.  or on an address which is outside the range specified but which lies within the
  117.  resolution range supported by the implementation.
  118.  Exception notification record
  119. }
  120.  
  121. TYPE
  122.     DSExceptionRecordPtr = ^DSExceptionRecord;
  123.     DSExceptionRecord = RECORD
  124.         exceptedTaskID:            TaskID;
  125.         exceptedKernelProcessID: KernelProcessID;
  126.         exceptedTaskAddrSpaceID: AddressSpaceID;
  127.         exceptionID:            MessageID;
  128.         exception:                ExceptionInformation;
  129.     END;
  130.  
  131. {  Task state record }
  132.     DSKernelStatePtr = ^DSKernelState;
  133.     DSKernelState = RECORD
  134.         kernelState:            SchedulerState;
  135.         PC:                        LogicalAddress;
  136.         SP:                        LogicalAddress;
  137.     END;
  138.  
  139.     DSTaskStatePtr = ^DSTaskState;
  140.     DSTaskState = RECORD
  141.         taskState:                DSKernelState;
  142.         swiState:                DSKernelState;
  143.     END;
  144.  
  145. {  ID to specify write access rights to a particular page in logical memory }
  146.     DSMemoryAccessID = ^LONGINT;
  147. {  SchedulerState values }
  148.  
  149. CONST
  150.     kInactiveState                = '    ';
  151.     kPageFaultState                = 'PFLT';
  152.     kMessageSendState            = 'MSND';
  153.     kMessageReceiveState        = 'MRCV';
  154.     kHeldState                    = 'HELD';
  155.     kEventFlagState                = 'EFLG';
  156.     kTerminatingOtherProcessState = 'OTRM';
  157.     kTerminatingCurrentProcessState = 'CTRM';
  158.     kTimerDelayState            = 'DLYQ';
  159.     kKernelQueueState            = 'QBLK';
  160.     kRunState                    = 'RUN ';
  161.     kSemaphoreReadState            = 'MSRD';
  162.     kSemaphoreWriteState        = 'MSWR';
  163.     kTaskStartingState            = 'STRT';
  164.     kTaskTerminatingState        = 'TERM';
  165.  
  166. {
  167.  Describes the data breakpoint facility provided by the current implementation.
  168.  maxBreakpoints is the maximum number of data breakpoints available (may be zero).
  169.  breakpointResolution determines the worst case range of addresses to which a data
  170.  breakpoint applies, as follows:  if the nominal breakpoint address is addr, the
  171.  actual range of addresses breakpointed may, in the worst case, be
  172.     [(addr & ~(breakpointResolution - 1)) ..
  173.             (addr & ~(breakpointResolution - 1)) + breakpointResolution - 1].
  174. }
  175.  
  176. TYPE
  177.     DSDataBreakpointInformationPtr = ^DSDataBreakpointInformation;
  178.     DSDataBreakpointInformation = RECORD
  179.         maxBreakpoints:            ItemCount;
  180.         breakpointResolution:    ByteCount;
  181.     END;
  182.  
  183.  
  184. CONST
  185.     kDataBreakpointInformationVersion = 1;
  186.  
  187. {
  188.  The access types to which a data breakpoint should apply.  Use
  189.  kDSBreakDisable to clear a data breakpoint.  Note that the implementation
  190.  may not support breakpointing read and write accesses independently; in
  191.  that case specifying either option will have the same effect (break on
  192.  any access).
  193. }
  194.  
  195. TYPE
  196.     DSDataBreakpointOptions                = OptionBits;
  197.  
  198. CONST
  199.     kDSBreakDisable                = $00000000;
  200.     kDSBreakOnReadAccess        = $00000001;
  201.     kDSBreakOnWriteAccess        = $00000002;
  202.  
  203. {
  204.  Debugger Services functions
  205.  Register the debugger.  Returns kernelIDErr if there is already a debugger
  206.  registered.
  207. }
  208. FUNCTION DSRegisterDebugger: OSStatus; C;
  209. {
  210.  Unregister the debugger.  This is also done automatically by the kernel if
  211.  the debugger terminates.
  212. }
  213. FUNCTION DSUnregisterDebugger: OSStatus; C;
  214. {  Wait specified amount of time for an exception message from the kernel. }
  215. FUNCTION DSWaitForException(VAR exceptionRecord: DSExceptionRecord; timeLimit: Duration): OSStatus; C;
  216. {
  217.  Resume execution of a task halted by an earlier exception.  If exceptionReturnStatus
  218.  is noErr, resume the task, else propagate the exception.  If the propagated exception
  219.  remains unhandled, a second exception notification will be generated.
  220. }
  221. FUNCTION DSResumeFromException(exceptionID: MessageID; exceptionReturnStatus: OSStatus): OSStatus; C;
  222. {  Make the specified task(s) ineligible for execution, until released by DSReleaseTasks. }
  223. FUNCTION DSHoldTasks(taskID: TaskID; scope: TaskRelationship): OSStatus; C;
  224. {  Make the specified held task(s) eligible again for execution. }
  225. FUNCTION DSReleaseTasks(taskID: TaskID; scope: TaskRelationship): OSStatus; C;
  226. {
  227.  Get the scheduler state for a task.   The task may be in a software interrupt or in
  228.  normal execution; if normal, state->swiState.kernelState will be kInactiveState.  In
  229.  either case, the appropriate state->taskState.kernelState or state->swiState.kernelState
  230.  will be kRunState if the task is running, and if so the corresponding PC and SP values
  231.  are invalid and will be returned as zero.  If the task is blocked in normal execution
  232.  then state->taskState.PC and state->taskState.SP will reflect the PC and SP at the time
  233.  of the system call which caused the task to block.  Similarly, if the task is blocked
  234.  in a software interrupt, hence not running, then state->swiState.PC and state->swiState.SP
  235.  will be nonzero.
  236. }
  237. FUNCTION DSGetTaskState(taskID: TaskID; VAR state: DSTaskState): OSStatus; C;
  238. {
  239.  Create a write access right to the page for logical address dstAddr in address
  240.  space addrSpaceID.  This makes the page physically resident and prevents subsequent
  241.  reads or writes of the page from or to backing storage.  The access right is returned
  242.  in memAccessID.
  243. }
  244. FUNCTION DSCreateMemoryAccess(addrSpaceID: AddressSpaceID; dstAddr: LogicalAddress; VAR memAccessID: DSMemoryAccessID): OSStatus; C;
  245. {
  246.  Modify the memory to which an access right has been obtained.  memAccessID is the access
  247.  right, dstAddr is the target address, srcDataPtr points to the source data to be written,
  248.  and numBytes is the size of the write.  The range [dstAddr..dstAddr + numBytes - 1] must lie
  249.  entirely within the page specified by the access right.  If the destination memory is code,
  250.  processor caches will be synchronized appropriately.
  251. }
  252. FUNCTION DSWriteMemory(memAccessID: DSMemoryAccessID; dstAddr: LogicalAddress; srcDataPtr: UNIV Ptr; numBytes: ByteCount): OSStatus; C;
  253. {
  254.  Delete an access right and allow normal backing storage activity for that page.  memAccessID
  255.  is the access right.  Note: changes to the page up to this point will NOT be written to
  256.  backing storage.
  257. }
  258. FUNCTION DSDeleteMemoryAccess(memAccessID: DSMemoryAccessID): OSStatus; C;
  259. {
  260.  Read memory.  srcAddr is the address to read from, addrSpaceID specifies the address space,
  261.  dstDataPtr points to the debugger buffer into which to copy the data, and numBytes is the
  262.  size of the read.
  263. }
  264. FUNCTION DSReadMemory(addrSpaceID: AddressSpaceID; srcAddr: LogicalAddress; dstDataPtr: UNIV Ptr; numBytes: ByteCount): OSStatus; C;
  265. {
  266.  Set a data breakpoint.  addrSpaceID specifies the address space, which may or may not be
  267.  used.  breakAddr is the logical address to break on.  numBytes is a hint as to the range
  268.  of addresses to break on.  The address range [breakAddr .. (breakAddr + numBytes -1)] must
  269.  lie within the worst case data breakpoint resolution which the implmentation supports, as
  270.  determined via DSGetDataBreakpointInformation.  A data breakpoint hit will result in a
  271.  memory access exception of type kDataBreakpointException.  The implementation may cause
  272.  excess exceptions which will have to be filtered out by the debugger, e.g. breakpoints
  273.  may occur in the wrong address space or on an address which is outside the range specified
  274.  but which lies within the resolution range supported by the implementation.  To "fix up"
  275.  a memory reference which triggered a data breakpoint exception without removing the
  276.  data breakpoint, use DSReadMemory or DSWriteMemory.  Data breakpoints may be disallowed
  277.  on certain addresses which are used by system code; DSSetDataBreakpoint will return
  278.  kernelInUseErr for such addresses.
  279. }
  280. FUNCTION DSSetDataBreakpoint(addrSpaceID: AddressSpaceID; breakAddr: LogicalAddress; numBytes: ByteCount; options: DSDataBreakpointOptions): OSStatus; C;
  281. {
  282.  Get information about data breakpoint support.  Returns the number of breakpoints available in
  283.  the current implementation and the worst case address resolution of a data breakpoint.
  284. }
  285. FUNCTION DSGetDataBreakpointInformation(version: PBVersion; VAR info: DSDataBreakpointInformation): OSStatus; C;
  286. {$ENDC}
  287. {$ALIGN RESET}
  288. {$POP}
  289.  
  290. {$SETC UsingIncludes := DebuggerSupportIncludes}
  291.  
  292. {$ENDC} {__DEBUGGERSUPPORT__}
  293.  
  294. {$IFC NOT UsingIncludes}
  295.  END.
  296. {$ENDC}
  297.